home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8206 / 8206.xpi / content / rss / rss.data.item.js < prev    next >
Text File  |  2010-02-02  |  3KB  |  116 lines

  1. WiseStampRSSDataItem.prototype = new Object();
  2.  
  3. WiseStampRSSDataItem.prototype.getTitle = WiseStampRSSDataItem_getTitle;
  4. WiseStampRSSDataItem.prototype.getLink = WiseStampRSSDataItem_getLink;
  5. WiseStampRSSDataItem.prototype.getDescription = WiseStampRSSDataItem_getDescription;
  6. WiseStampRSSDataItem.prototype.getAuthor = WiseStampRSSDataItem_getAuthor;
  7. WiseStampRSSDataItem.prototype.getCategory = WiseStampRSSDataItem_getCategory;
  8. WiseStampRSSDataItem.prototype.getComments = WiseStampRSSDataItem_getComments;
  9. WiseStampRSSDataItem.prototype.getEnclosure = WiseStampRSSDataItem_getEnclosure;
  10. WiseStampRSSDataItem.prototype.getGuid = WiseStampRSSDataItem_getGuid;
  11. WiseStampRSSDataItem.prototype.getPubDate = WiseStampRSSDataItem_getPubDate;
  12. WiseStampRSSDataItem.prototype.getSource = WiseStampRSSDataItem_getSource;
  13.  
  14. WiseStampRSSDataItem.prototype.setTitle = WiseStampRSSDataItem_setTitle;
  15. WiseStampRSSDataItem.prototype.setLink = WiseStampRSSDataItem_setLink;
  16. WiseStampRSSDataItem.prototype.setDescription = WiseStampRSSDataItem_setDescription;
  17. WiseStampRSSDataItem.prototype.setAuthor = WiseStampRSSDataItem_setAuthor;
  18. WiseStampRSSDataItem.prototype.setCategory = WiseStampRSSDataItem_setCategory;
  19. WiseStampRSSDataItem.prototype.setComments = WiseStampRSSDataItem_setComments;
  20. WiseStampRSSDataItem.prototype.setEnclosure = WiseStampRSSDataItem_setEnclosure;
  21. WiseStampRSSDataItem.prototype.setGuid = WiseStampRSSDataItem_setGuid;
  22. WiseStampRSSDataItem.prototype.setPubDate = WiseStampRSSDataItem_setPubDate;
  23. WiseStampRSSDataItem.prototype.setSource = WiseStampRSSDataItem_setSource;
  24.  
  25. function WiseStampRSSDataItem() {
  26.   this.setTitle(null);
  27.   this.setLink(null);
  28.   this.setDescription(null);
  29.   this.setAuthor(null);
  30.   this.setCategory(null);
  31.   this.setComments(null);
  32.   this.setEnclosure(null);
  33.   this.setGuid(null);
  34.   this.setPubDate(null);
  35.   this.setSource(null);
  36. }
  37.  
  38. function WiseStampRSSDataItem_getTitle() {
  39.   return this._title;
  40. }
  41.  
  42. function WiseStampRSSDataItem_getLink() {
  43.   return this._link;
  44. }
  45.  
  46. function WiseStampRSSDataItem_getDescription() {
  47.   return this._description;
  48. }
  49.  
  50. function WiseStampRSSDataItem_getAuthor() {
  51.   return this._author;
  52. }
  53.  
  54. function WiseStampRSSDataItem_getCategory() {
  55.   return this._category;
  56. }
  57.  
  58. function WiseStampRSSDataItem_getComments() {
  59.   return this._comments;
  60. }
  61.  
  62. function WiseStampRSSDataItem_getEnclosure() {
  63.   return this._enclosure;
  64. }
  65.  
  66. function WiseStampRSSDataItem_getGuid() {
  67.   return this._guid;
  68. }
  69.  
  70. function WiseStampRSSDataItem_getPubDate() {
  71.   return this._pubDate;
  72. }
  73.  
  74. function WiseStampRSSDataItem_getSource() {
  75.   return this._source;
  76. }
  77.  
  78. function WiseStampRSSDataItem_setTitle(value) {
  79.   this._title = value;
  80. }
  81.  
  82. function WiseStampRSSDataItem_setLink(value) {
  83.   this._link = value;
  84. }
  85.  
  86. function WiseStampRSSDataItem_setDescription(value) {
  87.   this._description = value;
  88. }
  89.  
  90. function WiseStampRSSDataItem_setAuthor(value) {
  91.   this._author = value;
  92. }
  93.  
  94. function WiseStampRSSDataItem_setCategory(value) {
  95.   this._category = value;
  96. }
  97.  
  98. function WiseStampRSSDataItem_setComments(value) {
  99.   this._comments = value;
  100. }
  101.  
  102. function WiseStampRSSDataItem_setEnclosure(value) {
  103.   this._enclosure = value;
  104. }
  105.  
  106. function WiseStampRSSDataItem_setGuid(value) {
  107.   this._guid = value;
  108. }
  109.  
  110. function WiseStampRSSDataItem_setPubDate(value) {
  111.   this._pubDate = value;
  112. }
  113.  
  114. function WiseStampRSSDataItem_setSource(value) {
  115.   this._source = value;
  116. }